home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2002-03-31 | 1.1 KB | 39 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="Internet\Internet Explorer\Appearance"
- "NAME"="Window Full Screen"
- "LANGUAGE"="VBScript"
- "VERSION"="1.00"
- "TEXT 1"="Display Internet Explorer in full screen mode"
- "DESCRIPTION 1"="If this option is activated, Internet Explorer will appear in full-screen (aka Kiosk mode) directly when it's started."
- "DESCRIPTION 2"="Inside Internet Explorer, you can toggle between full-screen and normal mode with "F11"."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="found by http://www2.cajun.net/~theriots/blk/xp_reg_edits.htm"
-
- sV1="HKEY_CURRENT_USER\Software\Microsoft\InternetExplorer\Main\FullScreen " 'str
-
- SUB Plugin_Initialize
- s=RegReadValue(sV1)
- if s="yes" then SetUIElement 1,true
- END SUB
-
- SUB Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue(sV1,"yes",1)
- else
- If RegValueExists(sV1) then
- Call RegDeleteValue(sV1)
- end if
- end if
-
- Call Restart()
- END SUB
-
- SUB Plugin_Terminate
- END SUB
-
-